課程資訊
課程名稱
資料結構與演算法實務
Practical Data Structures and Algorithms 
開課學期
107-1 
授課對象
生物資源暨農學院  生物機電工程學系  
授課教師
陳倩瑜 
課號
BME5010 
課程識別碼
631 U1260 
班次
 
學分
3.0 
全/半年
半年 
必/選修
選修 
上課時間
星期一7,8,9(14:20~17:20) 
上課地點
知武會議室 
備註
總人數上限:60人 
Ceiba 課程網頁
http://ceiba.ntu.edu.tw/1071BME5010_PDSA 
課程簡介影片
 
核心能力關聯
本課程尚未建立核心能力關連
課程大綱
為確保您我的權利,請尊重智慧財產權及不得非法影印
課程概述

此一課程在於介紹多種常用之資料結構與相關演算法,增進修課學生的程式設計能力,以期未來能在不同領域實際應用。

每週課程計畫進度:

Chapter 1: Fundamentals introduces a scientific and engineering basis for comparing algorithms and making predictions. It also includes our programming model.
Chapter 2: Sorting considers several classic sorting algorithms, including insertion sort, mergesort, and quicksort. It also includes a binary heap implementation of a priority queue.
Chapter 3: Searching describes several classic symbol table implementations, including binary search trees, red-black trees, and hash tables.
Chapter 4: Graphs surveys the most important graph processing problems, including depth-first search, breadth-first search, minimum spanning trees, and shortest paths.
Chapter 5: Strings investigates specialized algorithms for string processing, including radix sorting, substring search, tries, regular expressions, and data compression.
Chapter 6: Context highlights connections to systems programming, scientific computing, commercial applications, operations research, and intractability. 

課程目標
本課程將搭配JAVA程式編輯,介紹多種可使用的資料結構,引領學生了解現有演算法,解決實際問題。 
課程要求
修過至少一種基本程式設計課程(any language is fine, ext. C, C++, Java, Perl, Python, ...) 
預期每週課後學習時數
 
Office Hours
另約時間 備註: FB 私訊 or email: chienyuchen@ntu.edu.tw 
指定閱讀
https://algs4.cs.princeton.edu/home/ 
參考書目
1. Bundle of Algorithms in Java, Third Edition, Parts 1-5: Fundamentals, Data
Structures, Sorting, Searching, and Graph Algorithms (3rd Edition) (Pts. 1-5)

2. Sanjoy Dasgupta, Christos H. Papadimitriou, and Umesh Vazirani, Algorithms,
McGraw-Hill, 2006. (http://beust.com/weblog/2006/12/07/algorithms/) 
評量方式
(僅供參考)
 
No.
項目
百分比
說明
1. 
作業 
40% 
大約10~12次程式編輯作業 
2. 
期中考 
30% 
 
3. 
期末考 
30% 
 
 
課程進度
週次
日期
單元主題
第1週
9/10  Introduction
Connectivity problem 
第2週
9/17  Connectivity problem
Analysis of Algorithms 
第3週
9/24  國定假日 
第4週
10/01  Stacks and Queues
Iterator (Java) 
第5週
10/08  Elementary Sorts
Mergesort
Comparator (Java) 
第6週
10/15  Quick sort
Selection sort
因老師出國開會,將以預錄影片的方式上課 
第7週
10/22  Quick selection
Duplicate keys 
第8週
10/29  Priority queue
Binary heap
Heap sort 
第9週
11/05  Midterm 
第10週
11/12  Symbol Tables
Binary Search Trees 
第11週
11/19  Red-black trees
Kd-trees 
第12週
11/26  Undirected Graphs 
第13週
12/03  發期中考卷 + 檢討
Undirected Graphs 
第14週
12/10  Directed Graphs 
第15週
12/17  Minimum Spanning Trees 
第16週
12/24  Shortest Paths 
第17週
12/31  彈性放假,以預錄影片的方式上課
Hashs
Dynamic Programming https://en.wikipedia.org/wiki/Dynamic_programming 
第18週
01/07  Final